home *** CD-ROM | disk | FTP | other *** search
- ; Conversion definition file
- ; As you use this shareware program, please remember the author behind it.
- ; Your registration will be highly appreciated.
-
- inch_mm(x) = x*25.4
- inch_cm(x) = x*2.54
- feet_m(x) = x*.3048
- yard_m(x) = x*.9144
- mile_km(x) = x*1.6093
-
- mm_inch(x) = x/25.4
- cm_inch(x) = x/2.54
- m_feet(x) = x/.3048
- m_yard(x) = x/.9144
- km_mile(x) = x/1.6093
-
- Far_Cel(x) = (x-32)/1.8
- Cel_Far(x) = x*1.8+32
-
- inch_feet(x) = x/12
- feet_inch(x) = x*12
- yard_feet(x) = x*3
- feet_yard(x) = x/3
- mile_feet(x) = x*5280
- feet_mile(x) = x/5280
- mile_yard(x) = x*1760
- yard_mile(x) = x/1760